home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / sna / wsdup.exe / TIME.DOC < prev    next >
Text File  |  1992-05-27  |  2KB  |  47 lines

  1.                                             TIME.DOC
  2.  
  3. To use the TIME parameter in the SEND or RECEIVE command line for MVS/TSO,
  4. VM/CMS or MVS/CICS Hosts specify the value n as shown below, where n is the
  5. timeout value in seconds: 
  6.       TIME(n)
  7. OR
  8.  
  9.      TIME n
  10.  
  11. If you specify a TIME value when you issue the SEND or RECEIVE command, the
  12. program displays the following message while waiting for the Host:
  13.       TRANS10: Internal timer expired: file transfer will continue to retry
  14.  
  15. After the designated amount of time has passed, the following message is
  16. displayed:
  17.       TRANS59: Host has not yet responded within timeout, retry limit
  18.       exceeded. File transfer canceled.
  19.  
  20. Example
  21. In this example, the SEND command's TIME parameter is set to 120, which
  22. instructs SEND to wait 120 seconds before displaying the error message and
  23. exiting the program.
  24.  
  25. A user who is sending an ASCII file and accessing a TSO Host session with
  26. the Short Name A hotkeys to the PC DOS session and enters the following
  27. command:
  28.       SEND C:DOC1.TXT A:HOSTDOC1 ASCII CRLF TIME(120)
  29. where
  30. "A" is the window Short Name for the Host session to which the file is to
  31. be transferred. 
  32.  
  33.       "HOSTDOC1" is the time-sharing option (TSO) data set name.
  34.  
  35. "ASCII" specifies that the PC file is in ASCII format.  The data is
  36. translated so that the Host data contains the corresponding EBCDIC
  37. characters.
  38.  
  39. "CLRF" specifies that carriage return/line feed sequences are to be
  40. recognized as PC file record separators and deleted before being stored in
  41. the Host file.  Always include this option when transferring text files.
  42.  
  43.       "TIME(n)"
  44. is the TIME parameter.  The value of n is an integer from 20 to 65536,
  45. indicating the number of seconds.  The default value is 400 seconds (just
  46. slightly over 6 minutes).
  47.